home *** CD-ROM | disk | FTP | other *** search
- program DateProg;
-
- uses WinProcs, WinTypes;
-
- procedure DateSelSetCaption (Caption: PChar);
- far; external 'DATESEL' index 1;
-
- procedure DateSelSetHelpInfo (HelpFile: PChar; HelpContext: LongInt);
- far; external 'DATESEL' index 2;
-
- function DateSelDialog (var TheDate: Integer): Bool;
- far; external 'DATESEL' index 3;
-
- var
- i: Integer;
- buff: array [0..127] of Char;
- begin
- { Let's have a custom Caption }
- DateSelSetCaption ('Calling Delphi from Vanilla Pascal');
-
- lstrcpy (buff, 'You made no choice');
- if DateSelDialog (i) then wvsprintf (buff, 'You chose %d !', i);
- MessageBox (0, buff, 'Pascal Caller', mb_ok);
- end.
-
-
-